home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / Caml Light 0.7 / examples / minicaml / loadall.ml < prev    next >
Text File  |  1995-06-01  |  478b  |  23 lines

  1. compile "syntaxe.mli";;
  2. compile "eval.mli";;
  3. compile "eval.ml";;
  4. load_object "eval.zo";;
  5. compile "lexuniv.mli";;
  6. compile "lexuniv.ml";;
  7. load_object "lexuniv.zo";;
  8. compile "syntaxe.ml";;
  9. load_object "syntaxe.zo";;
  10. compile "types.mli";;
  11. compile "types.ml";;
  12. load_object "types.zo";;
  13. compile "synthese.mli";;
  14. compile "synthese.ml";;
  15. load_object "synthese.zo";;
  16. compile "caml.ml";;
  17. load_object "caml.zo";;
  18. #open "caml";;
  19. print_string "Pour lancer: boucle();;"; print_newline();;
  20.  
  21.  
  22.  
  23.